:root {
  --white-color: #fff;
  --primary-color: #ed1c24;
  --secondary-color: #113d69;
  --section-bg-color: #f0f0f0;
  --dark-color: #2f2f2f;
  --grey-color: #6b6b6b;
  --p-color: #4a4a4a;
  --body-font-family: Inter, sans-serif;
  --h5-font-size: 24px;
  --p-font-size: 20px;
  --copyright-text-font-size: 16px;
  --portefolio-link-font-size: 14px;
  --custom-link-font-size: 12px;
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}
body,
html {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  position: relative;
}
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}
h1,
h2 {
  font-weight: var(--font-weight-black);
}
h1 {
  font-size: 64px;
  line-height: normal;
}
h2 {
  font-size: 42px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 32px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}
a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}
a {
  color: var(--p-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
::selection {
  background: var(--primary-color);
  color: var(--white-color);
}
.custom-link {
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}
.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}
.custom-link:hover i {
  opacity: 1;
  left: 101%;
}
.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-thin);
}
b,
strong {
  font-weight: var(--font-weight-bold);
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}
.spinner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.custom-btn {
  background: var(--white-color);
  border-radius: 50px;
  color: var(--dark-color);
  font-size: var(--copyright-text-font-size);
  text-transform: uppercase;
  padding: 16.5px 20px;
}
.social-btn {
  background: transparent;
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  text-transform: none;
}
.social-btn:hover {
  border-color: transparent;
}
.cart-form-select {
  border-radius: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--portefolio-link-font-size);
}
.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
.custom-icon {
  color: var(--p-color);
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}
.bi-bag.custom-icon {
  font-size: 17px;
}
.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}
#theme-toggle {
  background-color: transparent;
  color: var(--white-color);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
#theme-toggle:hover {
  color: var(--primary-color);
}
.bxs-sun {
  color: #fff;
}
.bx-moon {
  color: #000;
}
.div-separator {
  position: relative;
}
.div-separator::before {
  content: "";
  height: 1px;
  background: var(--grey-color);
  display: block;
  width: 100%;
}
.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}
.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}
@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}
.navbar {
  background: var(--white-color);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 1.5rem 0;
  z-index: 1000;
  will-change: transform;
  transition: transform 300ms linear;
  box-shadow: 0 2px 10px #0000001a;
  display: flex;
  align-items: center;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .navbar-logo {
  height: 50px;
  width: auto;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 15px;
}
.navbar-brand {
  color: var(--dark-color);
  font-size: 28px;
  font-weight: var(--font-weight-bold);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar-brand span {
  color: var(--secondary-color);
}
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  outline: none;
}
.navbar-toggler-icon {
  background: var(--dark-color);
  width: 24px;
  height: 2px;
  position: relative;
  transition: background 0.3s ease;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--dark-color);
  transition: transform 0.3s ease, top 0.3s ease;
}
.navbar-toggler-icon::before {
  top: -6px;
}
.navbar-toggler-icon::after {
  top: 6px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  color: var(--p-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0;
}
.language-selector {
  color: var(--p-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}
.language-selector span {
  transition: color 0.3s ease;
}
.language-selector span:hover {
  color: var(--primary-color);
}
.site-header {
  background-color: var(--section-bg-color);
  position: relative;
  overflow: hidden;
  margin-top: 86px;
}
.site-header.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
.site-header.section-padding-img {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .slick-video {
    height: 100vh;
  }
  .slick-slideshow {
    height: 100vh;
  }
}
.slick-slideshow {
  margin-top: 86px;
}
.slick-title {
  color: var(--primary-color);
}
.slick-custom {
  position: relative;
}
.slick-custom img {
  width: 100%;
  object-fit: cover;
}
.slick-bottom {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slick-bottom .container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}
.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;
}
@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    max-width: 1320px;
  }
}
.slick-slideshow .slick-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}
.slick-slideshow .slick-dots li {
  background: transparent;
  border: 5px solid #ffffff59;
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}
.slick-slideshow .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}
.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  background: var(--white-color);
}
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}
.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.featured {
  background: var(--section-bg-color);
}
.about .nav-pills .nav-item {
  width: 100%;
}
.about .nav-pills .nav-link {
  color: var(--grey-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid var(--grey-color);
  border-radius: 0;
  padding-right: 0;
}
.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active,
.about .nav-pills .show > .nav-link {
  background: transparent;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}
.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
.accordion-button {
  background-color: transparent;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}
button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}
.accordion-body {
  border-top: 1px solid #00000020;
}
.accordion-button {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  padding: 1.5rem 0;
}
.accordion-body {
  padding: 2rem 0;
}
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--dark-color);
}
.skill-thumb span {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}
.skill-thumb .progress {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}
.skill-thumb .progress .progress-bar-primary {
  background: var(--primary-color);
}
.latest-news {
  background: var(--white-color);
  padding: 7rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.news-item {
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 6px #0000001a;
  overflow: hidden;
  display: flex; /* Add flexbox to the container */
  flex-direction: column; /* Stack children vertically */
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 2rem;
  flex: 1; /* Allow content to grow and take up remaining space */
  display: flex; /* Add flexbox to the content */
  flex-direction: column; /* Stack children vertically */
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: var(--custom-link-font-size);
  color: var(--grey-color);
}

.news-title {
  font-size: var(--h5-font-size);
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto; /* Push the footer to the bottom */
}

.news-date {
  font-size: var(--custom-link-font-size);
  color: var(--grey-color);
}
.custom-link {
  color: var(--primary-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}
.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}
.custom-link:hover i {
  opacity: 1;
  left: 101%;
}
.contact-info {
  padding: 40px;
}
.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}
.form-floating > label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}
.contact-form button[type="submit"] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}
.contact-form button[type="submit"]:hover {
  background: var(--primary-color);
}
.site-footer {
  background: var(--grey-color);
  padding: 4rem 0;
  color: var(--white-color);
}
.footer-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.footer-text {
  font-size: 1rem;
  color: #fff;
  opacity: 0.8;
  line-height: 1.6;
}
.social-icon {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-inline-item {
  display: inline-block;
  margin-right: 1rem;
}
.list-inline-item:last-child {
  margin-right: 0;
}
.social-icon-link {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.social-icon-link:hover {
  opacity: 1;
  color: var(--primary-color) !important;
}
.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ffffff1a;
}
.copyright-text {
  font-size: var(--copyright-text-font-size);
  color: #fff;
  opacity: 0.8;
}
.social-icon {
  margin: 0;
  padding: 0;
}
.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}
.social-icon-link {
  color: #6c757d;
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}
.social-icon-link:hover {
  color: var(--primary-color);
}

/* Estilo para os cards de serviços */
.service-card {
  background: var(--white-color);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribui o espaço uniformemente */
  height: 100%; /* Garante que todos os cards tenham a mesma altura */
}

.service-card:hover {
  transform: translateY(-10px); /* Efeito de levantar */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Sombra ao passar o mouse */
  background: var(
    --section-bg-color
  ); /* Mudança de cor de fundo ao passar o mouse */
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color); /* Cor do ícone */
  margin-bottom: 15px;
}

/* Estilos do Carrossel Missão/Visão */
.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--secondary-color);
  width: 12px;
  height: 12px;
}

.mission-vision-carousel {
  height: auto; /* Changed to auto for better responsiveness */
  width: 100%;
  min-height: 425px; /* Minimum height to ensure content is visible */
  overflow: hidden;
  position: relative;
  margin: 1.5rem 0; /* Added margin for better spacing */
}

#missionVisionCarousel .carousel-inner {
  height: 100%;
}

.carousel-item {
  height: auto; /* Changed to auto for better responsiveness */
  min-height: 425px; /* Minimum height to ensure content is visible */
  transition: transform 0.6s ease-in-out;
  overflow-y: hidden;
  padding: 20px; /* Adjusted padding for better content spacing */
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  text-align: center;
}

#missionVisionCarousel .carousel-indicators {
  position: absolute;
  bottom: 20px; /* Adjusted bottom position */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
}

.btn-in-class {
  height: auto;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers content horizontally and vertically */
  background-color: var(--section-bg-color); /* Gray background */
  overflow: hidden;
  box-sizing: border-box;
}

.buttons-container-multiple {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping if buttons exceed container width */
  gap: 20px; /* Space between buttons */
  justify-content: center; /* Centers buttons horizontally */
  align-items: center; /* Centers buttons vertically */
  max-width: 100%;
  overflow: hidden;
}

.custom-btn-services {
  background: var(--white-color);
  border-radius: 50px;
  width: auto; /* Allows buttons to resize based on content */
  min-width: 400px; /* Ensures buttons have a minimum width */
  max-width: 400px; /* Prevents excessive width */
  color: var(--dark-color);
  font-size: var(--copyright-text-font-size);
  text-transform: uppercase;
  padding: 20px 20px;
  text-align: center;
  white-space: nowrap; /* Prevents text from breaking */
  box-sizing: border-box;
  flex-shrink: 0; /* Prevents buttons from shrinking too much */
}

.custom-btn-services:hover,
.slick-slideshow .custom-btn-services:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.logo_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: Arial, sans-serif;
  text-decoration: none;
  color: inherit;
}

.logo_text strong {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-color); /* Default color */
  transition: color 0.3s ease-in-out;
}

.logo_text strong span {
  color: var(--secondary-color);
  transition: color 0.3s ease-in-out;
}

.logo_text p {
  font-size: 12px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
  pointer-events: none; /* Prevent hover effect */
}

.logo_text:hover strong,
.logo_text:hover strong span {
  color: var(--secondary-color);
}

/* Project Gallery Layout */
.project-gallery {
  padding: 40px 0;
}

.gallery-layout {
  display: flex;
  gap: 20px;
}

.large-image-container {
  flex: 1 1 60%;
  max-width: 60%;
  display: flex;
  align-items: flex-end; /* Ensure the large image container aligns to the bottom */
}

.large-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.thumbnails-container {
  flex: 1 1 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space out thumbnails and button */
  gap: 20px;
}

.thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumbnails .col-3 {
  flex: 1 1 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

.thumbnails img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnails img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-button-container {
  text-align: center;
  margin-top: auto; /* Push the button to the bottom */
}
.custom-btn-project {
  background: var(--primary-color);
  border-radius: 50px;
  width: 100%; /* Make sure the button resizes properly */
  max-width: 400px; /* Prevents excessive width */
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  text-transform: uppercase;
  padding: 16.5px 20px;
  text-align: center;
  white-space: nowrap; /* Prevents text from breaking */
  box-sizing: border-box;
}

.custom-btn-project:hover,
.slick-slideshow .custom-btn-project:hover {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery-layout {
    flex-direction: column;
  }

  .large-image-container,
  .thumbnails-container {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .thumbnails .col-3 {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .thumbnails .col-3 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
    margin-bottom: 0;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 28px;
  }
  h5 {
    font-size: 24px;
  }
  h6 {
    font-size: 20px;
  }
  .btn-in-class {
    padding: 13.5px 20px; /* Reduce padding on smaller screens */
  }
  .custom-btn-services {
    max-width: 90%; /* Allows button to shrink properly */
    font-size: 14px;
    padding: 13.5px 20px;
  }
  .custom-btn-project {
    max-width: 90%; /* Allows button to shrink properly */
    font-size: 14px;
    padding: 13.5px 20px;
  }
  .mission-vision-carousel {
    height: auto; /* Adjusted height for better mobile view */
    min-height: 400px; /* Minimum height for smaller devices */
    margin-top: 1rem; /* Adjusted margin for better spacing */
  }
  .carousel-item {
    height: auto; /* Adjusted height for better mobile view */
    min-height: 400px; /* Adjusted minimum height for smaller devices */
    padding: 15px; /* Adjusted padding for smaller screens */
  }
  #missionVisionCarousel .carousel-indicators {
    bottom: 15px; /* Adjusted bottom position for smaller screens */
  }
  .lead {
    font-size: 16px;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1rem;
  }
  .site-header {
    background-position: bottom;
  }
  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }
  .custom-btn {
    font-size: 14px;
    padding: 13.5px 20px;
  }
  .slick-slideshow .custom-btn {
    padding-right: 27px;
    padding-left: 27px;
  }
  .social-login,
  .div-separator {
    width: 75% !important;
  }
  #cart-modal .modal-footer .row {
    width: 100% !important;
  }
  .site-header.section-padding,
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .site-header-image.section-padding {
    padding-bottom: 0;
  }
  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }
  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem;
  }
  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }
  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
  .modal-body {
    padding: 2rem;
  }
  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }
  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem;
  }
  .full-image-img {
    bottom: 0;
  }
}
